From a021fa3a73e7951622ff964c0047fab32055ada1 Mon Sep 17 00:00:00 2001 From: Stepan Koltsov Date: Wed, 19 Nov 2014 22:10:21 +0300 Subject: [PATCH] better darwin detection --- .travis.install.deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.install.deps.sh b/.travis.install.deps.sh index e18f1ce5b..ea8b9e2ec 100755 --- a/.travis.install.deps.sh +++ b/.travis.install.deps.sh @@ -1,7 +1,7 @@ set -x set -e -if [ "${TRAVIS_OS_NAME}" = "osx" ] || [ "${PLATFORM}" = "mac" ]; then +if [ "${TRAVIS_OS_NAME}" = "osx" ] || [ "${PLATFORM}" = "mac" ] || [ "`uname`" = "Darwin" ]; then target=apple-darwin elif [ "${OS}" = "Windows_NT" ] || [ "${PLATFORM}" = "win" ]; then windows=1 -- 2.30.2